home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Source Code / C++ / Applications / HyperCuber 2.0 / source / CKeyControlsArrayPane.h < prev    next >
Encoding:
Text File  |  1994-04-01  |  717 b   |  26 lines  |  [TEXT/KAHL]

  1. //|~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  2. //| CKeyControlsArrayPane.cp
  3. //|
  4. //| This file contains the interface to the CKeyControlsArray class.  The
  5. //| CKeyControlsArrayPane class implements the the scrolling list in the key
  6. //| controls window.
  7. //|________________________________________________________________________________
  8.  
  9.  
  10. #include <CArrayPane.h>
  11.  
  12.  
  13. class CKeyControlsArrayPane : public CArrayPane
  14.     {
  15.  
  16.   public:
  17.  
  18.     void IKeyControlsArrayPane( CView *anEnclosure, CBureaucrat *aSupervisor,
  19.                             short aWidth, short aHeight,
  20.                             short aHEncl, short aVEncl,
  21.                             SizingOption aHSizing, SizingOption aVSizing);
  22.  
  23.     void DrawCell(Cell theCell, Rect *cellRect);
  24.     
  25.     };
  26.